home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-02-11 | 26.6 KB | 763 lines | [TEXT/MPS ] |
- ######################################################################################
- ######################################################################################
- #
- # IMPORTANT! This file must be named "POV-Ray.make" to be able to build it with
- # the MPW Shell Build-Menu commands!
- #
- ######################################################################################
- ######################################################################################
-
- ######################################################################################
- #
- # File: POV-Ray.make
- # Target: POV-Ray
- # Created: Wednesday, September 11, 1996 09:52:22 PM
- #
- # INTERFACES: Universal Interfaces 2.1.4
- # LIBRARIES: Included with Universal Interfaces 2.1.4
- # COMPILING WITH: MrC C Compiler 2.0f1c0
- # LINKING WITH: PPCLink
- #
- # Makefile created by Thorsten Froehlich, CIS 106325,3677
- #
- ######################################################################################
- #
- # This file has been created with MPW Shell contained on E.T.O. 22.
- # All used files are contained on the E.T.O. CD. No prerelease files have been used!
- #
- # Building Notes:
- # Set your directory to the directory that contains "SOUCRE" and "MacSource".
- # After it is compiled & linked you will have to copy the resources into it!!!
- # Remember to set the memory defaults, too!
- #
- # BUGS: I don't know if PNG-files work.
- #
- # Of course the POV-Ray created with this makefile will be an Unofficial Version.
- # All I can tell you is that it worked with my configuration.
- # I will provide no support and I am not responsible for any data lost by use
- # of this file or the created program!
- #
- ######################################################################################
-
- ######################################################################################
- #
- # The following changes have to be made to compile and link POV-Pay 3.0 with MrC!!!
- #
- ######################################################################################
-
- ###
- ### To compile POV-Ray 3.01 you have to update the MacSource files:
- ### ==============================================================
- ###
- ### In "Config.h"
- ###
- ### Add this below the line "// >>> Add new compilers here! <<<"
- ###
- ### #if defined(__MRC__)
- ### // MrC (New MPW/ETO PowerPC Compiler)
- ### #define COMPILER_VER ".MacMrC"
- ### #endif // COMPILER_VER
- ###
- ### Add this below the line "#include "PrePost.h" (near the end of the file):
- ###
- #include "Stdio_p2w.h"
- ###
- ### ---------------------------
- ### In "Pov.c"
- ###
- ### Add this line below "/*==== Global variables (external scope) ====*/":
- ###
- ### QDGlobals qd;
- ###
- ### Replace:
- #include <OSEvents.h>
- ### with:
- #include <Events.h>
- ###
- ### Replace:
- #include <FragLoad.h>
- ### with:
- #include <CodeFragments.h>
- ###
- ### ---------------------------
- ### In "PrePost.c"
- ###
- ### Add this below the line "#define PREPOST_C"
- ###
- #include "AppPrefs.h"
- ###
- ### ---------------------------
- ###
- ### To compile POV-Ray 3.01 you have to change the SOURCE files:
- ### ===========================================================
- ###
- ### ---------------------------
- ###
- ### In "OPTIN.C"
- ###
- ### Replace the definition of the function "Do_Return_Option":
- ###
- ### void Do_Return_Option (Type,value)
- ### SHELLTYPE Type;
- ### char *value;
- ###
- ### with (I know that there should be no problem with the original code,
- ### but MrC doesn't! Maybe it is a definition in a Apple include file?):
- ###
- ### void Do_Return_Option (SHELLTYPE Type,char *value)
- ###
- ### ---------------------------
- ###
- ### In "POVRAY.C"
- ###
- ### Replace the definition of the function "pov_shellout":
- ###
- ### SHELLRET pov_shellout (Type)
- ### SHELLTYPE Type;
- ###
- ### with (I know that there should be no problem with the original code,
- ### but MrC doesn't! Maybe it is a definition in a Apple include file?):
- ###
- ### SHELLRET pov_shellout (SHELLTYPE Type)
- ###
- ### You cannot use this code (the E.T.O. 22 libraries seem not to have
- ### a "getcwd" function and PPCLink will fail (of course):
- ###
- ### if (strlen (opts.Output_Path) == 0)
- ### {
- ### getcwd (opts.Output_Path, sizeof (opts.Output_Path) - 1) ;
- ### /* on some systems (MacOS) getcwd adds the path separator on the end */
- ### /* so only add it if it isn't already there... [esp] */
- ### if (opts.Output_Path[strlen(opts.Output_Path)-1] != FILENAME_SEPARATOR)
- ### strcat (opts.Output_Path, separator_string) ;
- ### }
- ###
- ### Disable it (with comments):
- ###
- ### /*
- ### if (strlen (opts.Output_Path) == 0)
- ### {
- ### getcwd (opts.Output_Path, sizeof (opts.Output_Path) - 1) ; */
- ### /* on some systems (MacOS) getcwd adds the path separator on the end */
- ### /* so only add it if it isn't already there... [esp] */
- ### /* if (opts.Output_Path[strlen(opts.Output_Path)-1] != FILENAME_SEPARATOR)
- ### strcat (opts.Output_Path, separator_string) ;
- ### } */
- ###
- ### ---------------------------
- ###
- ### In "TOKENIZE.C"
- ###
- ### Replace the definition of the function "Skip_Tokens":
- ###
- ### static void Skip_Tokens(cond)
- ### COND_TYPE cond;
- ###
- ### with (I know that there should be no problem with the original code,
- ### but MrC doesn't! Maybe it is a definition in a Apple include file?):
- ###
- ### static void Skip_Tokens(COND_TYPE cond)
- ###
- ### ---------------------------
- ###
- ### In "WARPS.H"
- ###
- ### Add this include file:
- #include <FRAME.H>
- ###
- ### ---------------------------
- ###
- ### In "USERIO.H"
- ###
- ### Add this include file:
- #include <FRAME.H>
- ###
- ### ---------------------------
- ###
- ### In ":LIBPNG:PNG.H"
- ###
- ### WARNING!!! I have not tested if PNG-files can be used without
- ### "PNG_PROGRESSIVE_READ_SUPPORTED" because I don't use them.
- ###
- ### Add this definition at the top:
- #undef PNG_PROGRESSIVE_READ_SUPPORTED
- ###
- ### Add this member to the structure definition of "png_struct_def":
- ### "FILE *fp;"
- ###
- ### ---------------------------
- ###
- ### In ":LIBPNG:PNGIO.C"
- ###
- ### WARNING!!! I have not tested if PNG-files can be used without
- ### "PNG_PROGRESSIVE_READ_SUPPORTED" because I don't use them.
- ###
- ### Add this definition after the line "#include "png.h" " (near the top!):
- #undef PNG_PROGRESSIVE_READ_SUPPORTED
- ###
- ### ---------------------------
- ###
- ### In ":LIBPNG:pngconf.h"
- ###
- ### Replace:
- #include <sys/types.h>
- ### with:
- #include <types.h>
- ###
- ### Replace:
- #if defined(__MWERKS__) ||defined(applec) ||defined(THINK_C) ||defined(__SC__)
- ### with:
- #if defined(__MWERKS__) ||defined(applec) ||defined(THINK_C) ||defined(__SC__) ||defined(__MRC__)
- ###
- ### ---------------------------
- ###
- ###
- ### End of modifications.
- ###
-
- ######################################################################################
- #
- # The real makefile starts here.
- #
- ######################################################################################
-
- MAKEFILE = POV-Ray.make
- •MondoBuild• = # Make blank to avoid rebuilds when makefile is modified
- PovRayMacDir = :MacSource:
- PovRayDir = :SOURCE:
- Sym•PPC =
-
- # -opt speed,unroll new in MrC 2.0, unrolling is off by default, not on as in MrC 1.x
- PPCCOptions = {Sym•PPC} -i ":SOURCE:LIBPNG:" ∂
- -i ":SOURCE:ZLIB:" ∂
- -i ":SOURCE:" ∂
- -i ":MacSource:TE32K:" ∂
- -i ":MacSource:" ∂
- -opt speed,unroll ∂
- -align power ∂
- -target 604 ∂
- -ldsize 64 ∂
- -maf on ∂
- -sym off ∂
- -typecheck strict ∂
- -w off
- Objects•PPC = ∂
- "{PovRayMacDir}UndoRedoSystem.c.x" ∂
- "{PovRayMacDir}AboutBox.c.x" ∂
- "{PovRayMacDir}aeAppHdlr.c.x" ∂
- "{PovRayMacDir}AEUtils.c.x" ∂
- "{PovRayMacDir}Animate.c.x" ∂
- "{PovRayMacDir}AppPrefs.c.x" ∂
- "{PovRayMacDir}ArgvTrix.c.x" ∂
- "{PovRayMacDir}CursorUtils.c.x" ∂
- "{PovRayMacDir}DialogUtils.c.x" ∂
- "{PovRayMacDir}FilePrefs.c.x" ∂
- "{PovRayMacDir}FileQueue.c.x" ∂
- "{PovRayMacDir}ImageWindow.c.x" ∂
- "{PovRayMacDir}LnkLst.c.x" ∂
- "{PovRayMacDir}MemAlloc.c.x" ∂
- "{PovRayMacDir}Pov.c.x" ∂
- "{PovRayMacDir}povtcpch.c.x" ∂
- "{PovRayMacDir}PrePost.c.x" ∂
- "{PovRayMacDir}Printf2Window.c.x" ∂
- "{PovRayMacDir}Profiling.c.x" ∂
- "{PovRayMacDir}ProgressDialog.c.x" ∂
- "{PovRayMacDir}SaveCmpPict.c.x" ∂
- "{PovRayMacDir}ScreenUtils.c.x" ∂
- "{PovRayMacDir}SplashScreen.c.x" ∂
- "{PovRayMacDir}stdfolder.c.x" ∂
- "{PovRayMacDir}sysMacPict.c.x" ∂
- "{PovRayMacDir}TemplateMenu.c.x" ∂
- "{PovRayMacDir}TextEditor.c.x" ∂
- "{PovRayMacDir}VolsPaths.c.x" ∂
- "{PovRayMacDir}zsupport.c.x" ∂
- "{PovRayMacDir}TE32K:TE32K.c.x" ∂
- "{PovRayDir}ZLib:ADLER32.C.x" ∂
- "{PovRayDir}ZLib:COMPRESS.C.x" ∂
- "{PovRayDir}ZLib:CRC32.C.x" ∂
- "{PovRayDir}ZLib:DEFLATE.C.x" ∂
- "{PovRayDir}ZLib:GZIO.C.x" ∂
- "{PovRayDir}ZLib:INFBLOCK.C.x" ∂
- "{PovRayDir}ZLib:INFCODES.C.x" ∂
- "{PovRayDir}ZLib:INFFAST.C.x" ∂
- "{PovRayDir}ZLib:INFLATE.C.x" ∂
- "{PovRayDir}ZLib:INFTREES.C.x" ∂
- "{PovRayDir}ZLib:INFUTIL.C.x" ∂
- "{PovRayDir}ZLib:TREES.C.x" ∂
- "{PovRayDir}ZLib:UNCOMPR.C.x" ∂
- "{PovRayDir}ZLib:ZUTIL.C.x" ∂
- "{PovRayDir}LIBPNG:PNG.C.x" ∂
- "{PovRayDir}LIBPNG:PNGERROR.C.x" ∂
- "{PovRayDir}LIBPNG:PNGMEM.C.x" ∂
- "{PovRayDir}LIBPNG:PNGRCB.C.x" ∂
- "{PovRayDir}LIBPNG:PNGREAD.C.x" ∂
- "{PovRayDir}LIBPNG:PNGRTRAN.C.x" ∂
- "{PovRayDir}LIBPNG:PNGRUTIL.C.x" ∂
- "{PovRayDir}LIBPNG:PNGTRANS.C.x" ∂
- "{PovRayDir}LIBPNG:PNGWRITE.C.x" ∂
- "{PovRayDir}LIBPNG:PNGWTRAN.C.x" ∂
- "{PovRayDir}LIBPNG:PNGWUTIL.C.x" ∂
- "{PovRayDir}LIBPNG:PNGIO.C.x" ∂
- "{PovRayDir}ATMOSPH.C.x" ∂
- "{PovRayDir}BBOX.C.x" ∂
- "{PovRayDir}BCYL.C.x" ∂
- "{PovRayDir}BEZIER.C.x" ∂
- "{PovRayDir}BLOB.C.x" ∂
- "{PovRayDir}BOXES.C.x" ∂
- "{PovRayDir}BSPHERE.C.x" ∂
- "{PovRayDir}CAMERA.C.x" ∂
- "{PovRayDir}CHI2.C.x" ∂
- "{PovRayDir}COLOUR.C.x" ∂
- "{PovRayDir}CONES.C.x" ∂
- "{PovRayDir}CSG.C.x" ∂
- "{PovRayDir}DISCS.C.x" ∂
- "{PovRayDir}EXPRESS.C.x" ∂
- "{PovRayDir}FRACTAL.C.x" ∂
- "{PovRayDir}GIF.C.x" ∂
- "{PovRayDir}GIFDECOD.C.x" ∂
- "{PovRayDir}HALOS.C.x" ∂
- "{PovRayDir}HCMPLX.C.x" ∂
- "{PovRayDir}HFIELD.C.x" ∂
- "{PovRayDir}IFF.C.x" ∂
- "{PovRayDir}IMAGE.C.x" ∂
- "{PovRayDir}LATHE.C.x" ∂
- "{PovRayDir}LBUFFER.C.x" ∂
- "{PovRayDir}LIGHTING.C.x" ∂
- "{PovRayDir}MATRICES.C.x" ∂
- "{PovRayDir}MEM.C.x" ∂
- "{PovRayDir}MESH.C.x" ∂
- "{PovRayDir}NORMAL.C.x" ∂
- "{PovRayDir}OBJECTS.C.x" ∂
- "{PovRayDir}OCTREE.C.x" ∂
- "{PovRayDir}OPTIN.C.x" ∂
- "{PovRayDir}OPTOUT.C.x" ∂
- "{PovRayDir}PARSE.C.x" ∂
- "{PovRayDir}PARSTXTR.C.x" ∂
- "{PovRayDir}PATTERN.C.x" ∂
- "{PovRayDir}PGM.C.x" ∂
- "{PovRayDir}PIGMENT.C.x" ∂
- "{PovRayDir}PLANES.C.x" ∂
- "{PovRayDir}PNG_POV.C.x" ∂
- "{PovRayDir}POINT.C.x" ∂
- "{PovRayDir}POLY.C.x" ∂
- "{PovRayDir}POLYGON.C.x" ∂
- "{PovRayDir}POLYSOLV.C.x" ∂
- "{PovRayDir}POVRAY.C.x" ∂
- "{PovRayDir}PPM.C.x" ∂
- "{PovRayDir}PRISM.C.x" ∂
- "{PovRayDir}QUADRICS.C.x" ∂
- "{PovRayDir}QUATERN.C.x" ∂
- "{PovRayDir}RADIOSIT.C.x" ∂
- "{PovRayDir}RAD_DATA.C.x" ∂
- "{PovRayDir}RAY.C.x" ∂
- "{PovRayDir}RENDER.C.x" ∂
- "{PovRayDir}SOR.C.x" ∂
- "{PovRayDir}SPHERES.C.x" ∂
- "{PovRayDir}SUPER.C.x" ∂
- "{PovRayDir}TARGA.C.x" ∂
- "{PovRayDir}TEXTURE.C.x" ∂
- "{PovRayDir}TOKENIZE.C.x" ∂
- "{PovRayDir}TORUS.C.x" ∂
- "{PovRayDir}TRIANGLE.C.x" ∂
- "{PovRayDir}TRUETYPE.C.x" ∂
- "{PovRayDir}TXTTEST.C.x" ∂
- "{PovRayDir}USERIO.C.x" ∂
- "{PovRayDir}VBUFFER.C.x" ∂
- "{PovRayDir}VLBUFFER.C.x" ∂
- "{PovRayDir}WARPS.C.x"
-
- # -codeorder staticcall # is not faster than -codeorder reference (tested with BLOPLOOP.POV)
- # -dead on # "on" is remove dead code, "off" is don't remove it!
- # -d # I hate warnings
- # "{PPCLibraries}libmoto" # Uncommenting this will add the fast Motorola FPU-Library (about 3% - 5% faster)
-
- POV-Ray ƒƒ {•MondoBuild•} {Objects•PPC}
- PPCLink ∂
- -o {Targ} {Sym•PPC} ∂
- {Objects•PPC} ∂
- -t 'APPL' ∂
- -c '????' ∂
- -codeorder reference ∂
- -dead on ∂
- -d ∂
- # "{PPCLibraries}libmoto" ∂
- "{SharedLibraries}InterfaceLib" ∂
- "{SharedLibraries}StdCLib" ∂
- "{SharedLibraries}MathLib" ∂
- "{SharedLibraries}DragLib" ∂
- "{SharedLibraries}ObjectSupportLib" ∂
- "{SharedLibraries}QuickTimeLib" ∂
- "{SharedLibraries}SoundLib" ∂
- "{SharedLibraries}VideoServicesLib" ∂
- "{PPCLibraries}StdCRuntime.o" ∂
- "{PPCLibraries}PPCCRuntime.o" ∂
- "{PPCLibraries}PPCToolLibs.o"
-
-
-
- "{PovRayMacDir}UndoRedoSystem.c.x" ƒ {•MondoBuild•} {PovRayMacDir}UndoRedoSystem.c
- {PPCC} "{PovRayMacDir}UndoRedoSystem.c" -o {Targ} {PPCCOptions}
-
- "{PovRayMacDir}AboutBox.c.x" ƒ {•MondoBuild•} {PovRayMacDir}AboutBox.c
- {PPCC} "{PovRayMacDir}AboutBox.c" -o {Targ} {PPCCOptions}
-
- "{PovRayMacDir}aeAppHdlr.c.x" ƒ {•MondoBuild•} {PovRayMacDir}aeAppHdlr.c
- {PPCC} "{PovRayMacDir}aeAppHdlr.c" -o {Targ} {PPCCOptions}
-
- "{PovRayMacDir}AEUtils.c.x" ƒ {•MondoBuild•} {PovRayMacDir}AEUtils.c
- {PPCC} "{PovRayMacDir}AEUtils.c" -o {Targ} {PPCCOptions}
-
- "{PovRayMacDir}Animate.c.x" ƒ {•MondoBuild•} {PovRayMacDir}Animate.c
- {PPCC} "{PovRayMacDir}Animate.c" -o {Targ} {PPCCOptions}
-
- "{PovRayMacDir}AppPrefs.c.x" ƒ {•MondoBuild•} {PovRayMacDir}AppPrefs.c
- {PPCC} "{PovRayMacDir}AppPrefs.c" -o {Targ} {PPCCOptions}
-
- "{PovRayMacDir}ArgvTrix.c.x" ƒ {•MondoBuild•} {PovRayMacDir}ArgvTrix.c
- {PPCC} "{PovRayMacDir}ArgvTrix.c" -o {Targ} {PPCCOptions}
-
- "{PovRayMacDir}CursorUtils.c.x" ƒ {•MondoBuild•} {PovRayMacDir}CursorUtils.c
- {PPCC} "{PovRayMacDir}CursorUtils.c" -o {Targ} {PPCCOptions}
-
- "{PovRayMacDir}DialogUtils.c.x" ƒ {•MondoBuild•} {PovRayMacDir}DialogUtils.c
- {PPCC} "{PovRayMacDir}DialogUtils.c" -o {Targ} {PPCCOptions}
-
- "{PovRayMacDir}FilePrefs.c.x" ƒ {•MondoBuild•} {PovRayMacDir}FilePrefs.c
- {PPCC} "{PovRayMacDir}FilePrefs.c" -o {Targ} {PPCCOptions}
-
- "{PovRayMacDir}FileQueue.c.x" ƒ {•MondoBuild•} {PovRayMacDir}FileQueue.c
- {PPCC} "{PovRayMacDir}FileQueue.c" -o {Targ} {PPCCOptions}
-
- "{PovRayMacDir}ImageWindow.c.x" ƒ {•MondoBuild•} {PovRayMacDir}ImageWindow.c
- {PPCC} "{PovRayMacDir}ImageWindow.c" -o {Targ} {PPCCOptions}
-
- "{PovRayMacDir}LnkLst.c.x" ƒ {•MondoBuild•} {PovRayMacDir}LnkLst.c
- {PPCC} "{PovRayMacDir}LnkLst.c" -o {Targ} {PPCCOptions}
-
- "{PovRayMacDir}MemAlloc.c.x" ƒ {•MondoBuild•} {PovRayMacDir}MemAlloc.c
- {PPCC} "{PovRayMacDir}MemAlloc.c" -o {Targ} {PPCCOptions}
-
- "{PovRayMacDir}Pov.c.x" ƒ {•MondoBuild•} {PovRayMacDir}Pov.c
- {PPCC} "{PovRayMacDir}Pov.c" -o {Targ} {PPCCOptions}
-
- "{PovRayMacDir}povtcpch.c.x" ƒ {•MondoBuild•} {PovRayMacDir}povtcpch.c
- {PPCC} "{PovRayMacDir}povtcpch.c" -o {Targ} {PPCCOptions}
-
- "{PovRayMacDir}PrePost.c.x" ƒ {•MondoBuild•} {PovRayMacDir}PrePost.c
- {PPCC} "{PovRayMacDir}PrePost.c" -o {Targ} {PPCCOptions}
-
- "{PovRayMacDir}Printf2Window.c.x" ƒ {•MondoBuild•} {PovRayMacDir}Printf2Window.c
- {PPCC} "{PovRayMacDir}Printf2Window.c" -o {Targ} {PPCCOptions}
-
- "{PovRayMacDir}Profiling.c.x" ƒ {•MondoBuild•} {PovRayMacDir}Profiling.c
- {PPCC} "{PovRayMacDir}Profiling.c" -o {Targ} {PPCCOptions}
-
- "{PovRayMacDir}ProgressDialog.c.x" ƒ {•MondoBuild•} {PovRayMacDir}ProgressDialog.c
- {PPCC} "{PovRayMacDir}ProgressDialog.c" -o {Targ} {PPCCOptions}
-
- "{PovRayMacDir}SaveCmpPict.c.x" ƒ {•MondoBuild•} {PovRayMacDir}SaveCmpPict.c
- {PPCC} "{PovRayMacDir}SaveCmpPict.c" -o {Targ} {PPCCOptions}
-
- "{PovRayMacDir}ScreenUtils.c.x" ƒ {•MondoBuild•} {PovRayMacDir}ScreenUtils.c
- {PPCC} "{PovRayMacDir}ScreenUtils.c" -o {Targ} {PPCCOptions}
-
- "{PovRayMacDir}SplashScreen.c.x" ƒ {•MondoBuild•} {PovRayMacDir}SplashScreen.c
- {PPCC} "{PovRayMacDir}SplashScreen.c" -o {Targ} {PPCCOptions}
-
- "{PovRayMacDir}stdfolder.c.x" ƒ {•MondoBuild•} {PovRayMacDir}stdfolder.c
- {PPCC} "{PovRayMacDir}stdfolder.c" -o {Targ} {PPCCOptions}
-
- "{PovRayMacDir}sysMacPict.c.x" ƒ {•MondoBuild•} {PovRayMacDir}sysMacPict.c
- {PPCC} "{PovRayMacDir}sysMacPict.c" -o {Targ} {PPCCOptions}
-
- "{PovRayMacDir}TemplateMenu.c.x" ƒ {•MondoBuild•} {PovRayMacDir}TemplateMenu.c
- {PPCC} "{PovRayMacDir}TemplateMenu.c" -o {Targ} {PPCCOptions}
-
- "{PovRayMacDir}TextEditor.c.x" ƒ {•MondoBuild•} {PovRayMacDir}TextEditor.c
- {PPCC} "{PovRayMacDir}TextEditor.c" -o {Targ} {PPCCOptions}
-
- "{PovRayMacDir}VolsPaths.c.x" ƒ {•MondoBuild•} {PovRayMacDir}VolsPaths.c
- {PPCC} "{PovRayMacDir}VolsPaths.c" -o {Targ} {PPCCOptions}
-
- "{PovRayMacDir}zsupport.c.x" ƒ {•MondoBuild•} {PovRayMacDir}zsupport.c
- {PPCC} "{PovRayMacDir}zsupport.c" -o {Targ} {PPCCOptions}
-
- "{PovRayMacDir}TE32K.c.x" ƒ {•MondoBuild•} {PovRayMacDir}TE32K.c
- {PPCC} "{PovRayMacDir}TE32K.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}ATMOSPH.c.x" ƒ {•MondoBuild•} {PovRayDir}ATMOSPH.c
- {PPCC} "{PovRayDir}ATMOSPH.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}ZLib:COMPRESS.c.x" ƒ {•MondoBuild•} {PovRayDir}ZLib:COMPRESS.c
- {PPCC} "{PovRayDir}ZLib:COMPRESS.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}ZLib:CRC32.c.x" ƒ {•MondoBuild•} {PovRayDir}ZLib:CRC32.c
- {PPCC} "{PovRayDir}ZLib:CRC32.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}ZLib:DEFLATE.c.x" ƒ {•MondoBuild•} {PovRayDir}ZLib:DEFLATE.c
- {PPCC} "{PovRayDir}ZLib:DEFLATE.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}ZLib:GZIO.c.x" ƒ {•MondoBuild•} {PovRayDir}ZLib:GZIO.c
- {PPCC} "{PovRayDir}ZLib:GZIO.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}ZLib:INFBLOCK.c.x" ƒ {•MondoBuild•} {PovRayDir}ZLib:INFBLOCK.c
- {PPCC} "{PovRayDir}ZLib:INFBLOCK.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}ZLib:INFCODES.c.x" ƒ {•MondoBuild•} {PovRayDir}ZLib:INFCODES.c
- {PPCC} "{PovRayDir}ZLib:INFCODES.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}ZLib:INFFAST.c.x" ƒ {•MondoBuild•} {PovRayDir}ZLib:INFFAST.c
- {PPCC} "{PovRayDir}ZLib:INFFAST.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}ZLib:INFLATE.c.x" ƒ {•MondoBuild•} {PovRayDir}ZLib:INFLATE.c
- {PPCC} "{PovRayDir}ZLib:INFLATE.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}ZLib:INFTREES.c.x" ƒ {•MondoBuild•} {PovRayDir}ZLib:INFTREES.c
- {PPCC} "{PovRayDir}ZLib:INFTREES.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}ZLib:INFUTIL.c.x" ƒ {•MondoBuild•} {PovRayDir}ZLib:INFUTIL.c
- {PPCC} "{PovRayDir}ZLib:INFUTIL.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}ZLib:TREES.c.x" ƒ {•MondoBuild•} {PovRayDir}ZLib:TREES.c
- {PPCC} "{PovRayDir}ZLib:TREES.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}ZLib:UNCOMPR.c.x" ƒ {•MondoBuild•} {PovRayDir}ZLib:UNCOMPR.c
- {PPCC} "{PovRayDir}ZLib:UNCOMPR.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}ZLib:ZUTIL.c.x" ƒ {•MondoBuild•} {PovRayDir}ZLib:ZUTIL.c
- {PPCC} "{PovRayDir}ZLib:ZUTIL.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}LIBPNG:PNG.c.x" ƒ {•MondoBuild•} {PovRayDir}LIBPNG:PNG.c
- {PPCC} "{PovRayDir}LIBPNG:PNG.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}LIBPNG:PNGERROR.c.x" ƒ {•MondoBuild•} {PovRayDir}LIBPNG:PNGERROR.c
- {PPCC} "{PovRayDir}LIBPNG:PNGERROR.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}LIBPNG:PNGMEM.c.x" ƒ {•MondoBuild•} {PovRayDir}LIBPNG:PNGMEM.c
- {PPCC} "{PovRayDir}LIBPNG:PNGMEM.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}LIBPNG:PNGRCB.c.x" ƒ {•MondoBuild•} {PovRayDir}LIBPNG:PNGRCB.c
- {PPCC} "{PovRayDir}LIBPNG:PNGRCB.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}LIBPNG:PNGREAD.c.x" ƒ {•MondoBuild•} {PovRayDir}LIBPNG:PNGREAD.c
- {PPCC} "{PovRayDir}LIBPNG:PNGREAD.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}LIBPNG:PNGRTRAN.c.x" ƒ {•MondoBuild•} {PovRayDir}LIBPNG:PNGRTRAN.c
- {PPCC} "{PovRayDir}LIBPNG:PNGRTRAN.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}LIBPNG:PNGRUTIL.c.x" ƒ {•MondoBuild•} {PovRayDir}LIBPNG:PNGRUTIL.c
- {PPCC} "{PovRayDir}LIBPNG:PNGRUTIL.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}LIBPNG:PNGTRANS.c.x" ƒ {•MondoBuild•} {PovRayDir}LIBPNG:PNGTRANS.c
- {PPCC} "{PovRayDir}LIBPNG:PNGTRANS.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}LIBPNG:PNGWRITE.c.x" ƒ {•MondoBuild•} {PovRayDir}LIBPNG:PNGWRITE.c
- {PPCC} "{PovRayDir}LIBPNG:PNGWRITE.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}LIBPNG:PNGWTRAN.c.x" ƒ {•MondoBuild•} {PovRayDir}LIBPNG:PNGWTRAN.c
- {PPCC} "{PovRayDir}LIBPNG:PNGWTRAN.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}LIBPNG:PNGWUTIL.c.x" ƒ {•MondoBuild•} {PovRayDir}LIBPNG:PNGWUTIL.c
- {PPCC} "{PovRayDir}LIBPNG:PNGWUTIL.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}LIBPNG:PNGIO.c.x" ƒ {•MondoBuild•} {PovRayDir}LIBPNG:PNGIO.c
- {PPCC} "{PovRayDir}LIBPNG:PNGIO.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}BBOX.c.x" ƒ {•MondoBuild•} {PovRayDir}BBOX.c
- {PPCC} "{PovRayDir}BBOX.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}BCYL.c.x" ƒ {•MondoBuild•} {PovRayDir}BCYL.c
- {PPCC} "{PovRayDir}BCYL.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}BEZIER.c.x" ƒ {•MondoBuild•} {PovRayDir}BEZIER.c
- {PPCC} "{PovRayDir}BEZIER.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}BLOB.c.x" ƒ {•MondoBuild•} {PovRayDir}BLOB.c
- {PPCC} "{PovRayDir}BLOB.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}BOXES.c.x" ƒ {•MondoBuild•} {PovRayDir}BOXES.c
- {PPCC} "{PovRayDir}BOXES.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}BSPHERE.c.x" ƒ {•MondoBuild•} {PovRayDir}BSPHERE.c
- {PPCC} "{PovRayDir}BSPHERE.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}CAMERA.c.x" ƒ {•MondoBuild•} {PovRayDir}CAMERA.c
- {PPCC} "{PovRayDir}CAMERA.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}CHI2.c.x" ƒ {•MondoBuild•} {PovRayDir}CHI2.c
- {PPCC} "{PovRayDir}CHI2.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}COLOUR.c.x" ƒ {•MondoBuild•} {PovRayDir}COLOUR.c
- {PPCC} "{PovRayDir}COLOUR.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}CONES.c.x" ƒ {•MondoBuild•} {PovRayDir}CONES.c
- {PPCC} "{PovRayDir}CONES.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}CSG.c.x" ƒ {•MondoBuild•} {PovRayDir}CSG.c
- {PPCC} "{PovRayDir}CSG.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}DISCS.c.x" ƒ {•MondoBuild•} {PovRayDir}DISCS.c
- {PPCC} "{PovRayDir}DISCS.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}EXPRESS.c.x" ƒ {•MondoBuild•} {PovRayDir}EXPRESS.c
- {PPCC} "{PovRayDir}EXPRESS.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}FRACTAL.c.x" ƒ {•MondoBuild•} {PovRayDir}FRACTAL.c
- {PPCC} "{PovRayDir}FRACTAL.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}GIF.c.x" ƒ {•MondoBuild•} {PovRayDir}GIF.c
- {PPCC} "{PovRayDir}GIF.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}GIFDECOD.c.x" ƒ {•MondoBuild•} {PovRayDir}GIFDECOD.c
- {PPCC} "{PovRayDir}GIFDECOD.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}HALOS.c.x" ƒ {•MondoBuild•} {PovRayDir}HALOS.c
- {PPCC} "{PovRayDir}HALOS.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}HCMPLX.c.x" ƒ {•MondoBuild•} {PovRayDir}HCMPLX.c
- {PPCC} "{PovRayDir}HCMPLX.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}HFIELD.c.x" ƒ {•MondoBuild•} {PovRayDir}HFIELD.c
- {PPCC} "{PovRayDir}HFIELD.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}IFF.c.x" ƒ {•MondoBuild•} {PovRayDir}IFF.c
- {PPCC} "{PovRayDir}IFF.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}IMAGE.c.x" ƒ {•MondoBuild•} {PovRayDir}IMAGE.c
- {PPCC} "{PovRayDir}IMAGE.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}LATHE.c.x" ƒ {•MondoBuild•} {PovRayDir}LATHE.c
- {PPCC} "{PovRayDir}LATHE.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}LBUFFER.c.x" ƒ {•MondoBuild•} {PovRayDir}LBUFFER.c
- {PPCC} "{PovRayDir}LBUFFER.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}LIGHTING.c.x" ƒ {•MondoBuild•} {PovRayDir}LIGHTING.c
- {PPCC} "{PovRayDir}LIGHTING.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}MATRICES.c.x" ƒ {•MondoBuild•} {PovRayDir}MATRICES.c
- {PPCC} "{PovRayDir}MATRICES.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}MEM.c.x" ƒ {•MondoBuild•} {PovRayDir}MEM.c
- {PPCC} "{PovRayDir}MEM.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}MESH.c.x" ƒ {•MondoBuild•} {PovRayDir}MESH.c
- {PPCC} "{PovRayDir}MESH.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}NORMAL.c.x" ƒ {•MondoBuild•} {PovRayDir}NORMAL.c
- {PPCC} "{PovRayDir}NORMAL.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}OBJECTS.c.x" ƒ {•MondoBuild•} {PovRayDir}OBJECTS.c
- {PPCC} "{PovRayDir}OBJECTS.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}OCTREE.c.x" ƒ {•MondoBuild•} {PovRayDir}OCTREE.c
- {PPCC} "{PovRayDir}OCTREE.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}OPTIN.c.x" ƒ {•MondoBuild•} {PovRayDir}OPTIN.c
- {PPCC} "{PovRayDir}OPTIN.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}OPTOUT.c.x" ƒ {•MondoBuild•} {PovRayDir}OPTOUT.c
- {PPCC} "{PovRayDir}OPTOUT.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}PARSE.c.x" ƒ {•MondoBuild•} {PovRayDir}PARSE.c
- {PPCC} "{PovRayDir}PARSE.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}PARSTXTR.c.x" ƒ {•MondoBuild•} {PovRayDir}PARSTXTR.c
- {PPCC} "{PovRayDir}PARSTXTR.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}PATTERN.c.x" ƒ {•MondoBuild•} {PovRayDir}PATTERN.c
- {PPCC} "{PovRayDir}PATTERN.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}PGM.c.x" ƒ {•MondoBuild•} {PovRayDir}PGM.c
- {PPCC} "{PovRayDir}PGM.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}PIGMENT.c.x" ƒ {•MondoBuild•} {PovRayDir}PIGMENT.c
- {PPCC} "{PovRayDir}PIGMENT.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}PLANES.c.x" ƒ {•MondoBuild•} {PovRayDir}PLANES.c
- {PPCC} "{PovRayDir}PLANES.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}PNG_POV.c.x" ƒ {•MondoBuild•} {PovRayDir}PNG_POV.c
- {PPCC} "{PovRayDir}PNG_POV.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}POINT.c.x" ƒ {•MondoBuild•} {PovRayDir}POINT.c
- {PPCC} "{PovRayDir}POINT.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}POLY.c.x" ƒ {•MondoBuild•} {PovRayDir}POLY.c
- {PPCC} "{PovRayDir}POLY.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}POLYGON.c.x" ƒ {•MondoBuild•} {PovRayDir}POLYGON.c
- {PPCC} "{PovRayDir}POLYGON.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}POLYSOLV.c.x" ƒ {•MondoBuild•} {PovRayDir}POLYSOLV.c
- {PPCC} "{PovRayDir}POLYSOLV.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}POVRAY.c.x" ƒ {•MondoBuild•} {PovRayDir}POVRAY.c
- {PPCC} "{PovRayDir}POVRAY.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}PPM.c.x" ƒ {•MondoBuild•} {PovRayDir}PPM.c
- {PPCC} "{PovRayDir}PPM.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}PRISM.c.x" ƒ {•MondoBuild•} {PovRayDir}PRISM.c
- {PPCC} "{PovRayDir}PRISM.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}QUADRICS.c.x" ƒ {•MondoBuild•} {PovRayDir}QUADRICS.c
- {PPCC} "{PovRayDir}QUADRICS.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}QUATERN.c.x" ƒ {•MondoBuild•} {PovRayDir}QUATERN.c
- {PPCC} "{PovRayDir}QUATERN.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}RADIOSIT.c.x" ƒ {•MondoBuild•} {PovRayDir}RADIOSIT.c
- {PPCC} "{PovRayDir}RADIOSIT.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}RAD_DATA.c.x" ƒ {•MondoBuild•} {PovRayDir}RAD_DATA.c
- {PPCC} "{PovRayDir}RAD_DATA.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}RAY.c.x" ƒ {•MondoBuild•} {PovRayDir}RAY.c
- {PPCC} "{PovRayDir}RAY.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}RENDER.c.x" ƒ {•MondoBuild•} {PovRayDir}RENDER.c
- {PPCC} "{PovRayDir}RENDER.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}SOR.c.x" ƒ {•MondoBuild•} {PovRayDir}SOR.c
- {PPCC} "{PovRayDir}SOR.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}SPHERES.c.x" ƒ {•MondoBuild•} {PovRayDir}SPHERES.c
- {PPCC} "{PovRayDir}SPHERES.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}SUPER.c.x" ƒ {•MondoBuild•} {PovRayDir}SUPER.c
- {PPCC} "{PovRayDir}SUPER.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}TARGA.c.x" ƒ {•MondoBuild•} {PovRayDir}TARGA.c
- {PPCC} "{PovRayDir}TARGA.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}TEXTURE.c.x" ƒ {•MondoBuild•} {PovRayDir}TEXTURE.c
- {PPCC} "{PovRayDir}TEXTURE.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}TOKENIZE.c.x" ƒ {•MondoBuild•} {PovRayDir}TOKENIZE.c
- {PPCC} "{PovRayDir}TOKENIZE.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}TORUS.c.x" ƒ {•MondoBuild•} {PovRayDir}TORUS.c
- {PPCC} "{PovRayDir}TORUS.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}TRIANGLE.c.x" ƒ {•MondoBuild•} {PovRayDir}TRIANGLE.c
- {PPCC} "{PovRayDir}TRIANGLE.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}TRUETYPE.c.x" ƒ {•MondoBuild•} {PovRayDir}TRUETYPE.c
- {PPCC} "{PovRayDir}TRUETYPE.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}TXTTEST.c.x" ƒ {•MondoBuild•} {PovRayDir}TXTTEST.c
- {PPCC} "{PovRayDir}TXTTEST.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}USERIO.c.x" ƒ {•MondoBuild•} {PovRayDir}USERIO.c
- {PPCC} "{PovRayDir}USERIO.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}VBUFFER.c.x" ƒ {•MondoBuild•} {PovRayDir}VBUFFER.c
- {PPCC} "{PovRayDir}VBUFFER.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}VLBUFFER.c.x" ƒ {•MondoBuild•} {PovRayDir}VLBUFFER.c
- {PPCC} "{PovRayDir}VLBUFFER.c" -o {Targ} {PPCCOptions}
-
- "{PovRayDir}WARPS.c.x" ƒ {•MondoBuild•} {PovRayDir}WARPS.c
- {PPCC} "{PovRayDir}WARPS.c" -o {Targ} {PPCCOptions}
-